home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / lib / partman / mount.d / 70reiserfs < prev    next >
Encoding:
Text File  |  2009-10-28  |  207 b   |  21 lines

  1. #!/bin/sh
  2.  
  3. set -- $1
  4.  
  5. fs=$1
  6. mp=$2
  7. type=$3
  8. options=$4
  9. dump=$5
  10. pass=$6
  11.  
  12. case $type in
  13.     reiserfs)
  14.     mount ${options:+-o "$options"} $fs /target$mp || exit 1
  15.     echo "umount /target$mp"
  16.     exit 0
  17.     ;;
  18. esac
  19.  
  20. exit 1
  21.